remove last character from string c#

46

c# remove last character from string -

string Name = "Teste,"
string ReturnName = "";
ReturnName = Name.Remove(Name.Length - 1);

how to remove last 3 characters from string in c# -

myString = myString.Substring(0, myString.Length-3);

remove last instance of string c# -

public static string ReplaceLastOccurrence(string Source, string Find, string Replace)
{
        int place = Source.LastIndexOf(Find);

        if(place == -1)
           return Source;

        string result = Source.Remove(place, Find.Length).Insert(place, Replace);
        return result;
}

c# console delete last character -

Console.Write("Abc");
Console.Write("\b");
Console.Write("Def");

C# remove the last character of a string -

using System;
class RemoveCharacter {
  static void Main() {
    string s = "king";
    string result = s.Remove(s.Length-1);
    Console.WriteLine(result);
  }
}

Comments

Submit
0 Comments